home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
graphics
/
gvvbx1
/
about.frm
next >
Wrap
Text File
|
1995-06-08
|
2KB
|
67 lines
VERSION 2.00
Begin Form About_Frm
BorderStyle = 3 'Fixed Double
Caption = "About GVBox Custom Control"
ClientHeight = 2670
ClientLeft = 2685
ClientTop = 2040
ClientWidth = 4065
Height = 3075
Left = 2625
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2670
ScaleWidth = 4065
Top = 1695
Width = 4185
Begin CommandButton Cmd_OK
Caption = "OK"
Default = -1 'True
Height = 375
Left = 1560
TabIndex = 1
Top = 2040
Width = 975
End
Begin Image Image1
Height = 480
Left = 360
Picture = ABOUT.FRX:0000
Top = 240
Width = 480
End
Begin Label Lbl_About
Alignment = 2 'Center
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 9.75
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 1455
Left = 480
TabIndex = 0
Top = 240
Width = 3255
End
End
Option Explicit
Sub Cmd_OK_Click ()
Unload About_Frm
End Sub
Sub Form_Load ()
Dim A$, CRLF$
Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 3
CRLF$ = Chr$(13) & Chr$(10)
A$ = "GVBox VBX" & CRLF$ & "Version 1.0" & CRLF$ & CRLF$
A$ = A$ & "by Joe C. Oliphant" & CRLF$
A$ = A$ & "joe_oliphant@csufresno.edu" & CRLF$
A$ = A$ & "CompuServe [71742,1451]"
Lbl_About.Caption = A$
End Sub